aboutsummaryrefslogtreecommitdiff
path: root/src/app/share/[...shareId]/Footer.tsx
blob: f29486286a1721be096ae3a408540ae83d0a9e2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Row, Text } from '@umami/react-zen';
import { CURRENT_VERSION, HOMEPAGE_URL } from '@/lib/constants';

export function Footer() {
  return (
    <Row as="footer" paddingY="6" justifyContent="flex-end">
      <a href={HOMEPAGE_URL} target="_blank">
        <Text weight="bold">umami</Text> {`v${CURRENT_VERSION}`}
      </a>
    </Row>
  );
}